UNPKG

@nadeshikon/plugin-nextjs

Version:
13 lines (9 loc) 233 B
'use client' import { usePathname } from 'next/navigation' export const config = { dynamicParams: false, } export default function Page() { const pathname = usePathname() return <p id="pathname">{pathname}</p> }